In [ ]:
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib
In [ ]:
# Look pretty...
# matplotlib.style.use('ggplot')
plt.style.use('ggplot')
Load up the wheat seeds dataset into a dataframe. We've stored a copy in the Datasets directory.
In [ ]:
# .. your code here ..
Create a 2d scatter plot that graphs the area and perimeter features:
In [ ]:
# .. your code here ..
Create a 2d scatter plot that graphs the groove and asymmetry features:
In [ ]:
# .. your code here ..
Create a 2d scatter plot that graphs the compactness and width features:
In [ ]:
# .. your code here ..
In [ ]:
# .. your code here ..
In [ ]:
# Display the graphs:
plt.show()
In [ ]: